home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / amok_lha / amok49.lha / DME / dme.doc < prev    next >
Text File  |  1993-08-15  |  48KB  |  1,102 lines

  1.  
  2. DME.DOC                 DME version 1.4                 Matthew Dillon
  3.                          05-Aug-1989
  4.  
  5. DME V1.4  (C)CopyRight 1987, Matthew Dillon.  All Rights Reserved.
  6. This software may be distributed for non-profit only.  This software is
  7. FREEWARE, not shareware.
  8.  
  9.     Matthew Dillon
  10.     891 Regal Rd
  11.     Berkeley, California  94708
  12.     USA
  13.  
  14.     Source is avalable:
  15.  
  16.         (1) By anonymous FTP to UCBVAX.BERKELEY.EDU (ARPANET)
  17.         (2) By regular mail (send a disk)
  18.         (3) By Electronic mail:
  19.             ARPANET:    dillon@ucbvax.berkeley.edu
  20.             USENET:     ...!ihnp4!ucbvax!dillon
  21.             (may take a while for me to respond)
  22.  
  23.  
  24.     Donations welcome but not solicited (I ain't a starving artist).
  25.  
  26.     icon by Bryce Nesbitt
  27.  
  28.     text markers and the text-block stack by Kevin Seghetti (some of the new
  29.     commands for 1.30).
  30.  
  31.     AREXX interface (Bill Hawes' ARexx REXX language interpreter) ported
  32.     by Kim DeVaughn
  33.  
  34.     M2Amiga / Amiga-Oberon error-support, scrollbar, screen and some new
  35.     commands by Volker Rudolph
  36.  
  37. ---------------------------------------------------------------------------
  38.  
  39. I   Overview
  40. II  Keymapping          key and mouse mapping
  41. III Command Sequences   DME commands
  42. IV  File Particulars    notes on loading and saving files,
  43. V   Workbench Support
  44. VI  Revision Summary    revision numbering, changes made, etc...
  45. VII Compiling           compiling instructions
  46.  
  47.                                     I
  48.                                  OVERVIEW
  49.  
  50. See REVISIONS section for revisions.  DME is an editor designed mainly for
  51. programmers.  Although it is not a word processor, it does include many
  52. word processing features such as Word-Wrap and automatic paragraph
  53. formatting.  Here is a quick 'features' list:
  54.  
  55.         -control language based on a rich command set accessed manually
  56.          or via arbitrary mapping of keys.  (Every key may be mapped to 128
  57.          different things via qualifier and mouse keys)
  58.  
  59.         -General variables, reference macros as variables, ENV: enviroment
  60.          variables (1.30C and beyond).
  61.  
  62.         -fast visual response (it scrolls quickly)... even faster when
  63.          BlitzFonts or similar text speedup utilities are installed.
  64.  
  65.         -title-line statistics showing your current position in the file,
  66.          file name, whether the file has been modified or not, etc...
  67.  
  68.         -Multiple Windows, ability to iconify windows
  69.  
  70.         -Word Wrap and automatic paragraph formatting.
  71.  
  72.         -ability to map any KEY or MOUSE BUTTON combination.
  73.  
  74. DME has been designed to allow easy expansion, and I intend to make many
  75. future improvments.  It has not been designed for user friendliness, but is
  76. straight forward if you read this document [care]fully.
  77.  
  78. DME can take any number of arguments.  Any argument without a '-' in front
  79. of it is considered to be a file.   Normally, DME will automatically SOURCE
  80. two script files, S:.EDRC, and the .EDRC in your current directory. These
  81. files do not have to exist.  These script files usually contain mappings
  82. and do things (for example, turn on savetabs).
  83.  
  84.     FLAGS:
  85.             -ffilename      -source this script file instead of .EDRC
  86.  
  87.             -b              -normally when multiple files are specified,
  88.                              DME opens them with small windows.  This opens
  89.                              them with normal sized windows.
  90.  
  91.             -tN     -Open the window on scan line N
  92.             -lN     -Open the window offset N scan columns
  93.             -wN     -Make the window N pixels wide
  94.             -hN     -Make the window N pixels high
  95.  
  96.             -sN     -Own screen has N bitplanes
  97.                      N=0 means workbench screen
  98.  
  99.                                     II
  100.                                  KEYMAPPING
  101.  
  102. MOUSE BUTTONS:
  103.  
  104.     The mouse buttons and combinations thereof may now be mapped.  The
  105.     default mappings for the mouse buttons are as follows:
  106.  
  107.     Left-button:    Move cursor to current mouse position
  108.     Right-button:   Iconify window
  109.     Left-button held down while moving mouse tracks the cursor
  110.  
  111.     The iconification features:
  112.         -Remembers original window size and placement
  113.         -Remembers placement of iconified window when you re-iconify later.
  114.  
  115.     Currently, you will crash the machine if you run out of memory and DME
  116.     is unable to open the icon window or original window, so be careful.
  117.  
  118.     see below for mapping the mouse buttons and mouse movement.
  119.  
  120.  
  121. KEYBOARD:
  122.  
  123. The rest of the Functional interface for DME is based on key/mouse mappings
  124. and a rich command set.  Unlike other text editors, any non-qualifier key
  125. in DME may have any meaning whatsoever.  It just so happens that the
  126. default keymappings assign such things as the (return) key to the RETURN
  127. function, the (up) key to the UP function, etc...  Keys are named by their
  128. keycap labels with the following exceptions:
  129.  
  130.     the name for Back-Space is  BS
  131.     the name for numeric keypad keys are prepended with an NK, except for
  132.     the Enter key which is named 'ENTER'.
  133.     The four cursor control keys are labeled UP, DOWN, LEFT, and RIGHT
  134.     The three mouse buttons are labeled RMB, MMB, and LMB.
  135.  
  136. NOTES:
  137.        The normal Amiga mouse has only two buttons, the Left and the Right
  138.        mouse buttons (LMB, RMB).  A properly installed three-button mouse
  139.        is also supported.
  140.  
  141.        You must type commands in lower-case, except for text, which can be
  142.        either lower or upper case, and for upper-case alpha keys when
  143.        specifying keymaps (i.e.  A and s-a are the same key).  The
  144.        exception is the AMIGA qualifier key, which uses 'A' instead of
  145.        'a'(Alt).
  146.  
  147.        Each key may be qualified with any combination of CTRL, ALT, SHIFT,
  148.        AMIGA, or any of the MOUSE buttons.  With 6 qualifiers (7 if your
  149.        mouse has a middle button), you can assign up to 64 (128) different
  150.        maps to each physical key on the keyboard.
  151.  
  152.        The CAPS-LOCK, when lit, is equivalent to SHIFT only for Alpha keys.
  153.  
  154.        The AMIGA-ALT (aA) combination isn't very usable since Intuition
  155.        uses the sequence to duplicate a Mouse SELECT.  Other AMIGA
  156.        sequences are used by intuition for mouse movement and other things.
  157.        Some other qualifier combinations may not be usable due to other
  158.        special sequences.
  159.  
  160.        Some keys must be mapped by their lower-case keycap.  That is, to
  161.        map the '>' key (USA keyboard), you specify shift dot (s-.)
  162.  
  163.  
  164.     ***EXAMPLES:***
  165.  
  166.     tab tab
  167.     a-a ALT a
  168.     A-a AMIGA a
  169.     sA-a        SHIFT AMIGA a
  170.     s-tab       SHIFT tab
  171.     c-tab       CTRL tab
  172.     ac-?        ALT-CTRL ?
  173.     s-f5        SHIFT F5
  174.     nk0 Numeric Keypad 0
  175.     cs-nk0      CTRL SHIFT Numeric Keypad 0
  176.     L-lmb       Left Mouse button pressed
  177.     L-mmove     Mouse moved while left mouse button held down
  178.     LR-lmb      left mouse button hit while right mouse button held down
  179.     s-.         shift . ('>' for USA keyboards)
  180.  
  181.     ***************
  182.  
  183. MAPPING MOUSE BUTTONS
  184.  
  185.     Mouse buttons serve both as QUALIFIERS and as KEYS.  Thus, you can map
  186.     both normal keystrokes which require a mouse button to be held down:
  187.  
  188.         map L-a ((left button and an a))
  189.  
  190.     as well as the mouse keys themselves:
  191.  
  192.         map L-lmb   ((left mouse key))
  193.  
  194.     note that you had to specify the left mouse button down qualifier L as
  195.     well as the left mouse button LMB.
  196.  
  197.     If you map the left mouse button, and also map a sequence such as left
  198.     mouse button + a:
  199.  
  200.         map L-lmb   tomouse
  201.         map L-a     ((hello))
  202.  
  203.     Note that the first mapping will always get executed even if you
  204.     intended L-a (that is, BOTH mappings would get executed).  In order
  205.     to avoid confusion you might want to UNMAP the system default mapping
  206.     for the right mouse button (mapped to ICONIFY) if you wish to apply
  207.     combinations to the right mouse button.
  208.  
  209.     MOUSE MOVEMENT is mapped with one or more mouse qualifiers (L, R, M),
  210.     plus 'MMOVE' for the key.  That is:
  211.  
  212.         map LR-mmove ((moving the mouse with both buttons held down))
  213.  
  214.     Or how bout capping the characters under the mouse while moving the
  215.     mouse?
  216.  
  217.         map LR-mmove (tomouse if cl (tlate -32))
  218.  
  219.  
  220.  
  221. DEFAULT KEYMAPPINGS:
  222.  
  223.     All Printable Ascii keys mapped to their ascii equivalent. BS, DEL, UP,
  224.     DOWN, LEFT, RIGHT, TAB, S-TAB, and ENTER are mapped properly.  These are
  225.     the default system keymappings.
  226.  
  227.  
  228.     map (a-c)       (bcopy)
  229.     map (a-d)       (bdelete)
  230.     map (a-down)    (scrolldown)
  231.     map (a-l)       (while cu (tlate +32 right))
  232.     map (a-m)       (bmove)
  233.     map (a-r)       (nextr)
  234.     map (a-s)       (bsource)
  235.     map (a-u)       (while cl (tlate -32 right))
  236.     map (a-up)      (scrollup)
  237.     map (bs)        (bs)
  238.     map (c-/)       (escimm (find ))
  239.     map (c-])       (ref)
  240.     map (c-[)       (ctags)
  241.     map (c-1)       (goto block)
  242.     map (c-b)       (block)
  243.     map (c-c)       ()
  244.     map (c-del)     (remeol)
  245.     map (c-down)    (pagedown)
  246.     map (c-esc)     (recall)
  247.     map (c-f)       (reformat)
  248.     map (c-g)       (escimm (goto ))
  249.     map (c-i)       (insertmode on)
  250.     map (c-j)       (join)
  251.     map (c-l)       (wleft)
  252.     map (c-n)       (next)
  253.     map (c-o)       (insertmode off)
  254.     map (c-p)       (prev)
  255.     map (c-q)       (quit)
  256.     map (c-r)       (wright)
  257.     map (c-s)       (split first down)
  258.     map (c-u)       (unblock)
  259.     map (c-up)      (pageup)
  260.     map (c-w)       (wordwrap toggle)
  261.     map (del)       (del)
  262.     map (down)      (down)
  263.     map (enter)     (return)
  264.     map (esc)       (esc)
  265.     map (f1)        (escimm (insfile ))
  266.     map (f10)       (saveold quit)
  267.     map (f2)        (escimm (newfile ))
  268.     map (f3)        (escimm (newwindow newfile ))
  269.     map (f6)        (saveold iconify)
  270.     map (f7)        (escimm (bsave ))
  271.     map (f8)        (saveold escimm (newfile ))
  272.     map (f9)        (saveold)
  273.     map (L-lmb)     (tomouse)
  274.     map (L-mmo)     (tomouse)
  275.     map (left)      (left)
  276.     map (R-rmb)     (iconify)
  277.     map (return)    (return insline up firstnb down)
  278.     map (right)     (right)
  279.     map (s- )       (( ))
  280.     map (s-del)     (deline)
  281.     map (s-down)    (bottom)
  282.     map (s-left)    (first)
  283.     map (s-right)   (last)
  284.     map (s-tab)     (backtab)
  285.     map (s-up)      (top)
  286.     map (sa-s)      (unblock block block bsource)
  287.     map (tab)       (tab)
  288.     map (up)        (up)
  289.  
  290.  
  291.  
  292.                                     III
  293.                              COMMAND SEQUENCES
  294.  
  295. DME has a rich command set which allows you to embed commands within
  296. commands, or specify multiple commands in a row.  A command consists of a
  297. KEYWORD followed by a FIXED number of arguments (0, 1, 2...).  The argument
  298. delimeter in DME is a SPACE.  Therefore, to embed strings containing spaces
  299. as a single argument, you must surround the string with (string)
  300. (backsinglequote-string-singlequote).  TEXT to be written as if typed is
  301. also specified via a string in backquote-quotes.  For example:
  302.  
  303.     right right (hello) right right (hello) enter down
  304.     map f4 (right right) map f5 (left left)
  305.     map f4 ((hello))
  306.  
  307. Reiterating (because this is important!)... If a command expects ONE
  308. argument, then it really does expect a single argument, and any remaining
  309. arguments are thought to be the next command... so:
  310.  
  311.     map f4 right
  312.                                     -right is only one word, so no need
  313.                                      for ().
  314.     map f4 (right right)
  315.                                     -we want to map f4 to two rights... we
  316.                                      need the () or the second right will
  317.                                      not be part of the map.
  318.  
  319.     map c-del (repeat cright del)
  320.                                     -this is already implimented as REMEOL,
  321.                                      but shown here for clarity.
  322.  
  323. Some arguments will eventually be fed through the command interpreter more
  324. than once.  The MAP command is a good example.  When you execute a MAP
  325. command, the first run through the command interpreter installs the map
  326. string minus a set of quotes.  So, if you want to specify text, you must
  327. enclose the text in two sets of ((text)) because the map string gets passed
  328. through the command interpreter again when you hit the mapped key.  Here
  329. are some more complex examples:
  330.  
  331.     map f4 (right right (hello) left left)      *RIGHT*
  332.     map f4 right right hello left left          *WRONG*
  333.  
  334.     map f4 (map f4 ((hello)))
  335.                                     -the first time you hit F4, it's command
  336.                                      is to re-map itself to the TEXT (hello).
  337.                                      (gads!).
  338.  
  339.     map c-i (repeat tr (( )))
  340.                                     -example of how to embed a space in a
  341.                                      map and repeat (goes through command
  342.                                      interpreter three times!).
  343.  
  344.  
  345. An easy way to fool around executing commands or making maps is either to
  346. use the ESC key (which enters command mode), or  a-S (alt-shift-s), which
  347. EXECUTES the current DME line that the cursor is on.... so you can use DME
  348. to edit and test your new keymappings.
  349.  
  350.  
  351.                                 STRING VARIABLES
  352.  
  353.     String variables are replaced with their contents.  Three specification
  354.     forms are allowed:
  355.  
  356.     $varname        - varname can only consist of a-z,A-Z,0-9,-,_
  357.     $(varname)      - anything not containing a '(' or ')'
  358.     $`varname'      - anything not containing a '`' or '''
  359.  
  360.     Two special variables exist:
  361.  
  362.         filename    - the current filename
  363.         scanf       - the current scanf'd string (see SCANF below)
  364.         lineno      - the current cursor line number (1 .. N)
  365.         column      - the current cursor column number (1 .. N)
  366.  
  367.     Other variables cause a search of three variable domains to find the
  368.     contents.  For example, if you give  $DMEFONT:
  369.  
  370.         (1) An Internal variable named DMEFONT is searched for.  Internal
  371.             variables are case sensitive.  (see SET, UNSET)
  372.  
  373.         (2) An Enviroment variable name DMEFONT is searched for.  Enviroment
  374.             variables are NOT case sensitive.  (see SETENV, UNSETENV).  The
  375.             1.3 ENV: is used.
  376.  
  377.         (3) A DME keymap or menu definition named DMEFONT is searched for.
  378.             This allows you to say something like $sa-tab to insert the
  379.             contents of the shift-alt-tab keymap.   (see MAP, UNMAP, and
  380.             MENU oriented commands).
  381.  
  382.     The reason for the other two forms of variable specifiction is to allow
  383.     one to access strangely named variables (with puncuation and other crap).
  384.  
  385.     SPECIAL NOTE:  What is wrong with this command?
  386.  
  387.         repeat 100 (first ($myvar))
  388.  
  389.     What is wrong is that $myvar is evaluated BEFORE the repeat is
  390.     executed.  myvar might contain characters that would confuse the
  391.     command specification when.  That is, if myvar contained a '(' you
  392.     could get something like:   repeat 100 (fist ((())  which is obviously
  393.     incorrect.  By using \ you can cause $myvar to be evaluated at
  394.     loop-execution time rather than before:
  395.  
  396.         repeat 100 (first (\$myvar))
  397.  
  398.     These kinds of problems can also occur when you do keymaps... you
  399.     probably do not want to evaluate the variable at keymap-entry time,
  400.     but rather would want the variable evaluated at keymap-execution time.
  401.  
  402.     On the otherhand, this is perfectly allowable:
  403.  
  404.         set x (tlate +1)
  405.         repeat 100 ($x)
  406.  
  407.     Which executes the command (tlate +1) 100 times... By NOT surrounding
  408.     the variable with parens (depends on the situation), the variable is
  409.     executed rather than inserted as text.
  410.  
  411.  
  412.                            SPECIAL CHARACTERS
  413.  
  414.     ^ is used to introduce a control character.  For example, ^c would
  415.     embed a control-c.  You cannot embed c-@ (ascii code 0).
  416.  
  417.     backslash \ is used to override special meanings.  The next character
  418.     is overriden.
  419.  
  420.     map c-a ((^l))      -map control a to produce a control l
  421.     map c-a ((\\\^l))   -map control a to produce a "^l".  The first
  422.                          \ overides the second, and the third overides
  423.                          the ^.
  424.  
  425. COMMAND LIST:
  426.  
  427.     (text)          -enter text as if typed.
  428.     key             -execute a keymap as a macro (example:  c-a)
  429.     header-item     -execute a menu item as a macro (example: Project-Save)
  430.                      (case independant)
  431.     ABORT           -Aborts current macro-execution
  432.     ADDPATH path    -Add the specified symbolic directory to DME's special
  433.                      search path (see REF and CTAGS).
  434.     ARPINSFILE      -INSFILE filerequestor, only if ARP.LIBRARY installed
  435.     ARPLOAD         -NEWFILE filerequestor, only if ARP.LIBRARY installed
  436.     ARPSAVE         -SAVEAS  filerequestor, only if ARP.LIBRARY installed
  437.     BACK            -same as BS
  438.     BACKTAB         -backward tab
  439.     BCOPY           -copy block before cursor line
  440.     BDELETE         -delete the block
  441.     BLOCK           -Set start or end of block
  442.     BMOVE           -move block before cursor line
  443.     BOTTOM          -Move to Bottom of File
  444.     BS              -backspace, (delete char to left of cursor)
  445.     BSAVE file      -save the block to a file
  446.     BSOURCE         -source current text block as if it were a script file
  447.     CD dir          -Change current directory
  448.     CHFILENAME name -change the name of the working file
  449.     CTAGS           -search for the tag under the cursor (see below)
  450.     CURRENTERR      -M2Amiga/Amiga-Oberon error-support: Displays current error
  451.     DEL             -delete, (deletes char under cursor)
  452.     DELINE          -delete line
  453.     DOWN            -cursor down
  454.     DOWNADD         -cursor down.  If at bottom of text, add a line.
  455.     ERRORMODE       -sets errormode for READERRS,FIRSTERR,NEXTERR,PREVERR,CURRENTERR
  456.     ESC             -toggle manual command entry mode
  457.     ESCIMM arg      -go into command entry mode prompting with a
  458.                      predefined string.
  459.     EXECUTE comm    -Execute a CLI command
  460.     FIND string     -SET the search pattern and do a NEXT
  461.     FINDR s1 s2     -Set find and replace patterns and do one find/rep.
  462.     FINDSTR string  -SET the search string pattern
  463.     FIRST           -move to column 1
  464.     FIRSTERR        -M2Amiga/Amiga-Oberon error-support: Displays first error
  465.     FIRSTNB         -Move to first non-blank in line.
  466.     GOTO BLOCK      -Goto the beginning of the marked block.
  467.     GOTO END        -goes to the END of the marked block.  undef. if no blk.
  468.     GOTO START      -same as GOTO BLOCK.  undefined if no block
  469.     GOTO [+/-]N     -Goto an absolute or relative line number
  470.     HEIGHT N        -set height in PIXELS for any new windows
  471.     ICONIFY         -iconify the window
  472.     IF cnd act      -IF/WHILE/IFELSE.. SEE BELOW
  473.     IFELSE cnd ifact elseact
  474.     IGNORECASE what -set case ignore for seaches.  what = on, off, or toggle
  475.     INSERTMODE what -set INSERTMODE.  what = on, off, or toggle
  476.     INSFILE name    -insert a file into the current text.
  477.     INSLINE         -insert line
  478.     IPC appname projname command - do ipc command
  479.     JOIN            -join next line to line at cursor
  480.     LAST            -move one beyond the last non-space in a line.
  481.     LEFT            -cursor left
  482.     LEFTEDGE N      -set leftedge on the screen in PIXELS for any new window
  483.     MAP key map     -map a key to a keymap
  484.     MARGIN N        -set WordWrap and paragraph formatting margin
  485.                      (related to WORDWRAP and REFORMAT)
  486.     MENUADD hdr item cmd    -add menu item
  487.     MENUCLEAR               -delete entire menu
  488.     MENUDEL hdr item        -delete menu item
  489.     MENUDELHDR hdr          -delete menu header
  490.     MENUOFF                 -disable menus (multiple calls are stacked)
  491.     MENUON                  -enable menus  (multiple calls are stacked)
  492.     MULTIREPLACE s1 s2      -interactive find and replace
  493.     NEWFILE name    -replace current text with new file
  494.     NEWWINDOW       -open newwindow
  495.     NEXT            -find next occurance of search pattern
  496.     NEXTERR         -M2Amiga/Amiga-Oberon error-support: Display next error
  497.     NEXTR           -find next occurance and replace
  498.     NULL            -no operation
  499.     PAGEDOWN        -pagedown a partial page (see PAGESET)
  500.     PAGESET n       -n PERCENT (0 to 100). page step size relative to the
  501.                      current number of rows in the window.
  502.     PAGEUP          -pageup a partial page (see PAGESET)
  503.     PING n          -set a text marker (0-9).
  504.     PONG n          -move to a previously set text marker (0-9)
  505.     PREV            -find previous occurance of search pattern
  506.     PREVERR         -M2Amiga/Amiga-Oberon error-support: Display previous error
  507.     PREVR           -find previous occurance and replace
  508.     PUSHMARK        -push the currently marked block onto a stack and
  509.                      unhighlight the block
  510.     POPMARK         -pop the block stack and highlight the popped block
  511.     PURGEMARK       -clear the mark stack
  512.     QUIT            -quit
  513.     READERRS        -re-read M2Amiga/Amiga-Oberon errorfile
  514.     RECALL          -recall most recently entered command.  Must be used
  515.                      from a keymap (c-esc).
  516.     REF             -reference string under cursor (see below)
  517.     REFORMAT        -reformat paragraph using the margin.
  518.     REMEOL          -Remove text under and beyond the cursor.
  519.     REMPATH wild    -Remove one or more symbolic directorys from DME's
  520.                      special path... a */? wildcard is acceptable.
  521.     REPEAT cnt comm -SEE BELOW
  522.     REPSTR string   -SET the replace string pattern
  523.     RESETTOGGLE N   -clear toggle array entry N(0..31)
  524.     RESIZE cols rows-Resize current window. E.G:  (resize 70 23)
  525.     RETURN          -same as (FIRST DOWNADD)
  526.     RIGHT           -cursor right
  527.     RX              -ARexx macro, no args   (RX macname)
  528.     RX1             -ARexx macro, one arg   (RX1 macname arg1)
  529.     RX2             -ARexx macro, two args  (RX2 macname arg1 arg2)
  530.     SAVEAS file     -save current text under a different name (title
  531.                      line name does not change)
  532.     SAVEMAP file    -save user keymappings
  533.     SAVEOLD         -save current text under current name
  534.     SAVESMAP file   -save all keymappings, including system keymaps
  535.     SAVETABS on/off -Optimize file saves by crunching spaces to tabs.
  536.                      The default is OFF.
  537.     SCANF ctlstr    -scan the string at the current text position (C scanf)
  538.                      example:   (scanf %s)          SEE BELOW
  539.     SCREENBOTTOM    -Move cursor to the bottom of the screen.
  540.     SCREENTOP       -Move cursor to the top of the screen
  541.     SCROLLDOWN      -Scroll down without moving cursor
  542.     SCROLLUP        -Scroll up without moving cursor
  543.     SET var str     -create/modify an internal variable
  544.     SETENV var str  -create/modify an enviroment variable (1.3 ENV:)
  545.     SETFONT font sz -Set the window's font.  ex:   (setfont topaz.font 11)
  546.     SETTOGGLE N     -set toggle array entry N  (0..255)
  547.     SOURCE file     -source a script file. '#' in first column for comment
  548.     SPLIT           -Split line at cursor
  549.     SWAPMARK        -PUSHMARK, swap top two marks on stack, POPMARK
  550.     TAB             -forward tab
  551.     TABSTOP N       -Set tab stops every N.  does not effect text load
  552.     TITLE str       -Display string in the title-line
  553.     TLATE [+/-]N    -translate character by +N or -N, or set character
  554.                      to exactly N if no + or -. (e.g. TLATE +65 TLATE 3)
  555.     TMPHEIGHT N     -set window height for next window only, pixels
  556.     TMPWIDTH  N     -set window width for next window only,  pixels
  557.     TOGGLE N        -flip toggle array entry N (0..255)  (See IF)
  558.     TOMOUSE         -moves cursor to mouse position
  559.     TOP             -Move to Top of File
  560.     TOPEDGE N       -set topedge in the screen in PIXELS for any new window
  561.     UNBLOCK         -clear the block markers for the current window
  562.     UNDELINE        -recall last line deleted with DELINE
  563.     UNDO            -undo current line (must be mapped to a key to work)
  564.     UNMAP key       -unmap a key
  565.     UNSET var       -delete an internal variable
  566.     UNSETENV var    -delete an enviroment variable
  567.     UP              -cursor up
  568.     WHILE cnd act   -(see below)
  569.     WIDTH N         -set width in PIXELS for any new window
  570.     WLEFT           -move to beginning of previous word.  If in the
  571.                      middle of a word, move to beginning of current word.
  572.     WORDWRAP on/off/toggle
  573.                     -Word Wrap mode (related to MARGIN)
  574.     WRIGHT          -move to beginning of next word
  575.  
  576.  
  577.         -------------------------------------------------------------
  578.     -------------    More Info on Complicated Commands  -----------------
  579.         -------------------------------------------------------------
  580.  
  581.  
  582.     MENUOFF/ON      -This command will enable/disable menus.  Users
  583.                      who have a whole bunch of MENUADD commands in
  584.                      their .EDRC should note that disabling menus at
  585.                      the beginning will speed up the MENUADD commands.
  586.                      Then reenable menus at the end.  These calls are
  587.                      stackable in that if you call MENUOFF, say, twice,
  588.                      it will take two MENUON commands to restore
  589.                      menus.  The reverse is not true.
  590.  
  591.     CTAGS   (c-[)   -(1.30B and beyond) Compatible with Aztec's CTAGS
  592.                      program.  This command searches for the subroutine
  593.                      name under the cursor in the associated tags file
  594.                      ("tags" in the directory holding the file currently
  595.                      being edited).  Also, the file "tags" in directories
  596.                      specified by the special DME path (see ADDPATH and
  597.                      REMPATH) will be searched.
  598.  
  599.                      If the tag is found, it loads the file the subroutine
  600.                      resides in if neccesary, then WindowToFront()'s the
  601.                      window, ActivateWindow()s it, and GOTO's the line
  602.                      where the subroutine starts.  The search within the
  603.                      source file is anchored to the left column.  If the
  604.                      file is already loaded, it is not reloaded.
  605.  
  606.                      This enables a programmer to quickly trace subroutines
  607.                      over an arbitrary number of files.
  608.  
  609.                      The tags file contains one or more lines of the following
  610.                      format:
  611.  
  612.                      subroutine-name file-name /^search-pattern
  613.                      (that's a slash and a carrot, then the pattern)
  614.  
  615.                      -- EXAMPLE of 'TAGS' file:
  616.                      setpen cmd1.c /^setpen(
  617.                      do_up cmd1.c /^do_up(
  618.                      --
  619.  
  620.                     SPECIAL NOTE:  CTAGS will work even if you are not in
  621.                     the directory containing the file.  You can thus place
  622.                     a tags file in the directory containing the files it
  623.                     references, and the filenames WITHIN the tags file need
  624.                     not be a full path.
  625.  
  626.     REF     (c-])   -(1.28d and beyond).  This is a very powerful new
  627.                      command that allows you to bring up a reference to
  628.                      a keyword with a single keystroke.  This is useful for
  629.                      programmers who have on-line documentation or fully
  630.                      commented include files.  DME opens a window just big
  631.                      enough to fit the reference.
  632.  
  633.                      NOTE:  The new CTAGS command may be more suited to
  634.                      your application.
  635.  
  636.                      The reference keyword is the alpha-numeric string
  637.                      currently under the cursor.  REF will search the
  638.                      file DME.REFS in the directories listed by the
  639.                      special DME path (see ADDPATH and REMPATH).  The
  640.                      file must be built by the user and each line has the
  641.                      following format:
  642.  
  643.                      (keyword) (#lines) (file) (search string in file)
  644.                                             OR
  645.                      (keyword) (endstring) (file) (search string in file)
  646.  
  647.                      Surrounding the keywords with `' or () is optional if
  648.                      the keyword does not contain spaces.
  649.  
  650.                         keyword     -keyword under cursor
  651.                         #lines      -number of lines to include from
  652.                                      specified file (just a number)
  653.                         file        -the file containing the reference
  654.                                      material
  655.                         searchstr   -search string in file that indicates
  656.                                      the beginning of the reference
  657.                         endstring   -alternately, the #lines can be a string,
  658.                                      in which case a match indicates the end
  659.                                      of the reference in the file.
  660.  
  661.                      Upon finding a successful keyword match the specified
  662.                      file is openned and the seach string searched for.  If
  663.                      found, the indicated number of lines (or until a match
  664.                      with the endstring) is placed in a temporary file and
  665.                      a new DME window brought up.  The temporary file is
  666.                      then deleted.
  667.  
  668.                      When looking for matches, the compare is anchored at
  669.                      the beginning of each line in the file.  Thus, any
  670.                      spaces in front of the string in the file must be
  671.                      duplicated.
  672.  
  673.                      T: must be assigned to a temporary directory, usually
  674.                      RAM:   See the included example DME.REFS file.  The
  675.                      most common things referenced are the autodocs and
  676.                      commented include files.
  677.  
  678.                      Some modification of the included DME.REFS.* files may
  679.                      be required due to differences in include file and
  680.                      autodoc format.
  681.  
  682.     SCANF ctlstr    -This is equivalent to the C scanf() function with the
  683.                      restriction that only one conversion is allowed, that
  684.                      conversion being a string.  Thus:
  685.  
  686.                      scanf %s       will place the string under the
  687.                                     cursor in the variable $scanf
  688.  
  689.                      scanf %4s      The first four chars of the string.
  690.  
  691.                      scanf %[0123456789]
  692.                                     will scan the string while it contains
  693.                                     specified chars (e.g. scan a number)
  694.  
  695.                      scanf %[~,]    will scan the string until it finds
  696.                                     a ','.
  697.  
  698.                     The variable $scanf may be used as an argument in any
  699.                     command.  Example:  (insfile $scanf).
  700.  
  701.                     NOTE:  If using $scanf in a macro, you probably want
  702.                     to precede it with a \ to prevent it from being
  703.                     evaluated at macro-creation time.
  704.  
  705.  
  706.     REPEAT N arg    -Repeat (arg) N times.  Apart from being a number, N
  707.                      can also be one of:
  708.  
  709.                         line    Current line # (lines begin at 1)
  710.                         lbot    #lines to the bottom, including current line
  711.                         cleft   column # (cols begin at 0)
  712.                         cright  #chars to eol, including current char under cursor
  713.                         tr      #char positions to next tab
  714.                         tl      #char positions to next back tab
  715.  
  716.                     Certain commands can abort a REPEAT loop.
  717.                     Specifically, any FIND[R], NEXT[R], or PREV[R] in which
  718.                     the search string is NOT found will abort a REPEAT.
  719.                     Most operations which can go out of bounds, such as
  720.                     UP, LEFT, RIGHT, DOWN, also abort a repeat.
  721.  
  722.                     Specifying -1 as N causes REPEAT to go on forever
  723.                     (well, actually, 0xFFFFFFFF times) or until an abort.
  724.  
  725.     IF [!]condition arg
  726.     WHILE [!]condition arg
  727.     IFELSE [!]condition arg else arg
  728.  
  729.             If the specified condition is true, execute the argument.  For
  730.             WHILE, the argument is executed until the condition is false
  731.             (be careful!).
  732.  
  733.             the optional '!' inverts the logic.
  734.  
  735.             Conditions:
  736.  
  737.  
  738.             #       if toggle entry # is SET.  there are 256 toggles (0..255)
  739.             t       if On line 1
  740.             b       if On last line
  741.             l       if At column 0
  742.             r       if At end of line (spaces below and beyond)
  743.             m       if Text has been modified
  744.             i       if in insert mode
  745.             x[<=>]# if column position (starts at 1) is (any OR combo of
  746.                     <, =, or >) than some number.  Example:   x<=20
  747.             y[<=>]# if Line number (starts at 1) is (same as for x)
  748.             cl      character under cursor is lower case alpha
  749.             cu      character under cursor is upper case alpha
  750.             ca      character under cursor is alpha-numeric
  751.             cn      character under cursor is numeric
  752.             c[<=>]# character under cursor is ascii code # (# in decimal)
  753.                     optional conditionals as in 'x' and 'y'.
  754.             cb      cursor within a block
  755.  
  756.         Example: simulating an insert mode toggle: ALT-i (not CTL-i)
  757.  
  758.     map a-i (ifelse 0 (toggle 0 insertmode OFF) (toggle 0 insertmode ON))
  759.  
  760.         Example: while lower case, map to upper case and move right.
  761.  
  762.     map c-U (while cl (tlate -32 right))
  763.  
  764.         Example: Search/Replace all of text.
  765.  
  766.     map c-R (escimm (findstr ) escimm (repstr ) repeat -1 nextr)
  767.  
  768.      if c<32 ((char under cursor is smaller than 32))
  769.      if c<>32 ((char under cursor is not equal to 32))
  770.      while !b down
  771.  
  772. ERRORMODE
  773.    -DME is able to read the error files of two compilers, M2Amiga and
  774.     Amiga-Oberon.
  775.  
  776.     ERRORMODE NONE   = No error files
  777.     ERRORMODE M2     = M2Amiga error files
  778.     ERRORMODE OBERON = Amiga-Oberon error files
  779.  
  780.     If you set the errormode to M2 or OBERON, DME checks if the
  781.     corresponding error files exists. Then you can skip with FIRSTERR,
  782.     NEXTERR, PREVERR, CURRENTERR through the error list. READERRS
  783.     re-reads the error file.
  784.  
  785.                                     IV
  786.                              FILE PARTICULARS
  787.  
  788. No Matter what you set internal tabs to, tabs in disk files will be 8.
  789. This allows you to use your favorite tabs stops (mine are 4) and still
  790. have your disk files compatible with TYPE, a printer, etc...  DME by
  791. default doesn't bother to optimize when writing out files and simply uses
  792. spaces. If you (SAVETABS on) before saving (or in your S:.EDRC, etc...),
  793. DME will attempt to optimize the file by placing TABS in appropriate
  794. places.  DME will not place any TABS after the first single, back, or
  795. double quote is encountered in a line.  If this does not cover every
  796. situation in your particular application that you want to be *sure* no tabs
  797. will occur in sensitive sections, then you should not use (SAVETABS on).
  798.  
  799. It should be noted that since DME removes spaces at the end of the line,
  800. editing UUENCODED ascii files will not work for uuencoded lines which end
  801. with a space.  The nominal fix is to add an extra character after each
  802. uuencoded line (anything) in the proper column, which is ignored by the
  803. UUDECODE program.
  804.  
  805. The command to save the current document under the default name is SAVEOLD,
  806. *not* SAVE.  SAVE is not a valid command.  This is to prevent people who
  807. have not read the documentation from assuming 'save' takes an argument (and
  808. screwing up their work).  SAVEOLD does NOT take an argument, SAVEAS does.
  809.  
  810. SAVEOLD/SAVEAS do not automatically backup the destination file.  If you
  811. are working in an enviroment where you are worried about ensuring a viable
  812. copy can be recovered if your Amiga crashes in the middle of the save, you
  813. can write a macro to save the file into two places.  Usually, people backup
  814. their working disks so this is not neccesary.
  815.  
  816. Workbench Support:  If DME is run from the workbench, it will automatically
  817. construct an icon file when you save a document.  If run from a CLI, no
  818. icon file is generated.
  819.  
  820.                                     V
  821.                               WORKBENCH SUPPORT
  822.  
  823. DME V1.26 and beyond support the workbench in the following way:  (1) you
  824. can click on the DME icon to bring up DME with the file "unnamed".  (2) you
  825. can select one or more standard ascii documents which have DME as the
  826. default tool.  If DME has no knowlege of a text icon, it uses its own.
  827. Command line arguments are passed to DME via the tooltypes entries for
  828. DME's application icon or via individual document icons.  The following
  829. format is used:  (This is a hack, no?)
  830.  
  831.     ARG=flag
  832.  
  833.     See the OVERVIEW section for allowed flags.  Only one argument per line
  834.     is allowed (sorry).  The tooltypes for the application icon are
  835.     processed first, then the tooltypes for each document icon are
  836.     processed before each file is loaded.
  837.  
  838.     ARG= -t10
  839.     ARG= -l10
  840.  
  841.                                     VI
  842.                               REVISION SUMMARY
  843.  
  844. V1.45            RELEASE by Volker Rudolph
  845.     -Joined the two versions together to one version with the ability
  846.      to read both, Amiga-Oberon and M2Amiga, error files
  847.     -New command: ERRORMODE
  848.  
  849. V1.44m / V1.44o  RELEASE by Volker Rudolph
  850.     -Fixed ARexx bug
  851.  
  852. V1.43m / V1.43o  RELEASE by Volker Rudolph
  853.     -Adapted to Kick 2.0
  854.     -Scrollbar changed
  855.  
  856. V1.42m / V1.42o  RELEASE by Volker Rudolph
  857.     -Several bugs fixed
  858.     -New command: READERRS
  859.     -V1.42m with M2Amiga error supprt
  860.     -V1.42o with Amiga-Oberon error support
  861.  
  862. V1.41   RELEASE by Volker Rudolph
  863.     -Added scrollbar
  864.     -Added M2Amiga error support: FIRSTERR,NEXTERR,CURRENTERR,PREVERR
  865.     -New commands: UNDELINE,ABORT,MULTIREPLACE
  866.     -Speeded up scrolling (about 40 percent)
  867.     -Optional own screen with variable number of bitplanes (-s#)
  868.  
  869. V1.31   RELEASE
  870.     -Added new variables $lineno and $colno
  871.     -Added CD command, ARPLOAD automatically CD's to DIR part of
  872.      requester.
  873.     -Added IPC support (my own ipc)
  874.     -Fixed bug in BMOVE (when the source block is an entire file)
  875.  
  876. V1.30C  LIMITED
  877.     -MAJOR!     Macros, Internal variables, and ENV: enviroment variables
  878.                 may be specified with $varname, $(varname), or $`varname'.
  879.  
  880.     -New commands:  SET, SETENV, UNSET, UNSETENV    (variable support)
  881.  
  882.     -REFS window bug fixed I hope (made window slightly too small).
  883.     -SAVE[S]MAP bug fixed for space mappings
  884.     -CTAGS doesn't modify the window title if the window is iconified
  885.      (allows you to make the following map: map <somemap> (iconify ctags)
  886.  
  887.  
  888. V1.30B  Limited release
  889.     -Kim fixed a bug in splitpath
  890.     -added CTAGS command... support for Aztec's CTAGS program
  891.     -added ADDPATH command... special directory paths for DME
  892.     -added REMPATH
  893.  
  894.         REFS no longer searches fixed directories, but looks at the
  895.         ADDPATH directories.  CTAGS also looks at the ADDPATH
  896.         directories.  CTAGS supports arbitrary directory specifications
  897.         and is intelligent about where to look for the TAGS file.
  898.  
  899.  
  900. V1.30   RELEASE
  901.     -a couple small bugs fixed
  902.     -fixed text bug that sometimes overwrites the right border
  903.     -added new commands
  904.         SETFONT     (for all of text, static fonts only)
  905.         IGNORECASE  (for searches)
  906.     -added new commands (AREXX support, Kim DeVaughn)
  907.         RX, RX1, RX2
  908.     -added new commands (by Kevin Speghetti)
  909.         PUSHMARK, POPMARK, SWAPMARK, PURGEMARK      block marker stack
  910.         PING, PONG                                  text markers (0-9)
  911.  
  912.         note: block marks on the stack, ping and pong, do not track text
  913.         changes (bug).
  914.  
  915.     -Many commands will now work while the text window is iconified
  916.      without having to uniconify it.
  917.  
  918. V1.29E
  919.     -Fixed low memory bug in do_bomve() again.
  920.     -Fixed arp file requestor problems.
  921.     -added ARPINSFILE command.
  922. V1.29D
  923.     -Fixed low memory bug in do_bmove()...
  924. V1.29C
  925.     -highlighted icon window if file modified
  926. V1.29B
  927.     -INLINE FILENAME:
  928.      added $filename variable.  $scanf and $filename can now be embedded
  929.      anywhere on the command line.
  930.     - ^x added (control-character), so you do not have to embed actual
  931.      control characters in your macros.
  932.     - \ overide added (\^x) produces "^x" instead of control-x, etc...
  933.  
  934. V1.29  RELEASE
  935.  
  936.     -Foreign keyboards supported better.
  937.     -Iconify window is activated rather than not activated.
  938.     -can keymap keys which normally produce nothing.
  939.     -blocks are displayed in a different color
  940.     -can now move/copy across windows
  941.     -can now resize window while file loading
  942.     -new commands ARPLOAD ARPSAVE   (uses ARP filerequestor if arp.library)
  943.      MENUADD MENUDEL MENUDELHDR MENUCLEAR MENUOFF MENUON
  944.  
  945.     minor bugs fixed, major remodeling of the source (this is what I
  946.     use my vacation for!)
  947.  
  948.     menus:  the right mouse button may be mapped only if there is no
  949.     menu, Else is used as the menu selector.  NOTE! It is much faster
  950.     to surround a set of MENUADD commands in a source file with
  951.     MENUOFF at the beginning and MENUON at the end.  You can also specify
  952.     menu items as macros in other commands (example: project-save)
  953.  
  954. V1.28h SMALL RELEASE    references work better
  955.  
  956. V1.28g SMALL RELEASE    Fixed NK0 bug in 1.28f plus keymap problems in 1.28f
  957.  
  958. V1.28f RELEASE
  959.     Fixed macro bug created in 1.28e... could not specify macros on the
  960.     command line.
  961.  
  962. V1.28e INTERNAL/BETA
  963.     New Commands:   REF     (c-])   -cross reference the word under the
  964.                                      cursor and bring up a new window
  965.                                      containing a description for that
  966.                                      word.  See docs above.
  967.  
  968.     -The keymapping has been fixed and should now work on any foreign
  969.      keyboard.
  970.     -MAJOR ADDITION:  () may be used instead of `' to enclose commands.
  971.      One can enclose the other ... that is, to get the "'" character you
  972.      can say (this is a charlie's day).
  973.  
  974. V1.28c RELEASE
  975.     New Commands:   CHFILENAME      -change default filename for a window
  976.                     RECALL  (c-esc) -recall command line (e.g. you make a
  977.                                      mistake).  Must be used from a keymap,
  978.                                      default is c-esc.
  979.  
  980.                     SCANF           -C scanf (single string only).  Extract
  981.                                      strings from the text for use in any
  982.                                      arbitrary command.
  983.  
  984.     Command Parser: $scanf          -as an argument by itself is recognized
  985.                                      to be the extracted string from scanf.
  986.                                      Currently, the variable name (after
  987.                                      the dollar) can be anything since only
  988.                                      one variable exists, but use '$scanf'
  989.                                      for future compatibility.
  990.  
  991.     -Many Bug fixes (mainly benign bugs)
  992.     -^C (CONTROL C) now recognized when typed in a window.  c-c is mapped
  993.      to () = no action.
  994.     -Please look at the revised default keymappings listed in these docs.
  995.  
  996.  
  997. V1.28 LIMITED RELEASE
  998.     New Commands :  SCROLLUP    (a-up)
  999.                     SCROLLDOWN  (a-down)
  1000.     Modified Cmds:  ESCIMM
  1001.         The execution of commands specified by an ESCIMM is blocked until
  1002.         the user hits return on the ESCIMM command line.
  1003.  
  1004.                     BCOPY
  1005.         No longer unblocks the block.
  1006.  
  1007.     -Title bar status line no longer blinks when it changes
  1008.     -Key releases no longer effect operation
  1009. V1.27 RELEASE
  1010.     -macros run about 20% faster due to hashing of the command table
  1011.     -Maximum # of toggles raised to 256 (see IF/WHILE)
  1012.     -small fixes to the code (nothing major)
  1013.     -child windows inherit tab stops, insert mode, and wordwrap mode
  1014.     -MOUSE BUTTONS AND MOVEMENT CAN NOW BE MAPPED
  1015.     -New Commands: ICONIFY      (used to be hardwired.  Is now a command)
  1016.     -Extended Commands: GOTO    (GOTO END of block)
  1017. V1.26 Beta, minimal Release
  1018.     -Workbench support
  1019.     -New Command:   EXECUTE
  1020. V1.25 RELEASE
  1021.     -BSAVE does NOT UNBLOCK after saving (switch in functionality yet again)
  1022.     -various bugs fixed (IF, tabs on file save)
  1023.     -New Commands: MARGIN, REFORMAT, WORDWRAP, RESIZE,
  1024.                    TOPEDGE, LEFTEDGE, WIDTH, HEIGHT
  1025.     -Command line options added for setting the window size and an optional
  1026.      specified script file (when specified, local .EDRC not sourced).
  1027.  
  1028.     -Enhanced Commands: IF  ..more control with conditions, addition of
  1029.                               a couple more specifications.
  1030.                        JOIN .. functionality slightly changed
  1031.     -keymaps may now be used as macros in other commands. (macros)
  1032.     -New keymaps added to the default set.
  1033.     -Mouse movement cleaned up a little.
  1034.  
  1035. V1.24 Internal
  1036.  
  1037. V1.23 RELEASE
  1038.     -S:.EDRC now sourced instead of C:.EDRC
  1039.     -User keymappings now work in COMMAND mode (when you hit ESC).
  1040.     -You can now map the Amiga keys ('A' for Amiga, since 'a' is alt).
  1041.     -Enhanced Commands: IF/IFELSE/WHILE (optional '!' in front of cond)
  1042.                         new condition 'cb' 'character is in selected block'
  1043.                         GOTO block  (goto beginning of block)
  1044.     -NewCommands:    PAGESET SAVETABS
  1045.     -Writing TABS (always 8) out to disk to save space now supported.
  1046.  
  1047. V1.22 RELEASE (BUF FIXES FROM 1.20)
  1048.     -'newfile' fixed
  1049. V1.21 RELEASE (BUG FIXES FROM 1.20)
  1050.     -iconify and window handling fixed
  1051.     -left mouse button now tracks the mouse.
  1052. V1.20 RELEASE
  1053.     -bug fixes: bsave now unmarks the block, bdelete now sets 'modified' flag.
  1054.             (other small fixes).
  1055.     -enhancements: overwrite mode status indicator, find, find-replace now
  1056.             completely implemented (yahhoo!!!)
  1057.     -changed commands:  FIND NEXT PREV: no longer loop back to the top of
  1058.             file or top->bottom in the case of PREV.  DELINE will now delete
  1059.             text on the line if there is only one line of text.
  1060.     -enhanced commands: GOTO REPEAT
  1061.     -new commands: SAVEMAP SAVESMAP TOGGLE SETTOGGLE RESETTOGGLE TLATE
  1062.                    IF IFELSE WHILE BSOURCE
  1063.                    FINDSTR REPSTR FINDR NEXTR PREVR
  1064.                    NEWWINDOW
  1065.     -new keymappings: (see a-s, a-S, f3)
  1066.     -window iconification with mouse menu button.
  1067.  
  1068.  
  1069. V1.12 RELEASE
  1070.     -cursor is now pen #3 rather than #1.
  1071.     -changeover to AZTEC C, smaller executable.
  1072.     -now maps shift space to a space.
  1073.     -new commands: REMEOL, WLEFT, WRIGHT
  1074.     -display bug fixes (SPLIT)
  1075.     -FIND/PREV/NEXT will now abort a REPEAT if string not found.
  1076.  
  1077. V1.11 RELEASE NOTES
  1078.     -Bug fixes (mainly graphical mistakes).
  1079.     -User keymappings are disabled in command mode (so you can unmap
  1080.       single ascii characters you may have mapped).
  1081.     -Illegal key combinations no longer give garbage (e.g. ALT-CURSOR-DOWN)
  1082.       you can, of course, still map them to anything you wish.
  1083.     -Save now checks for error conditions on write.
  1084.     -Uses Default Console Keymap (i.e. no longer assumes USA)... but there
  1085.       *is* some stangeness.
  1086.  
  1087. V1.00 RELEASE NOTES
  1088.     -has find, but no replace function
  1089.     -assumes USA keyboard                   (fixed 1.11)
  1090.     -disk files written out use spaces instead of tabs&spaces
  1091.  
  1092.  
  1093.                                     VII
  1094.                                 COMPILING
  1095.  
  1096. DME compiles only under AZTEC.  You must compile with the 32 bit int
  1097. option, but may use the small code/data model.  A support lib which I have
  1098. created (SUP32.LIB) is also required.  I use a precompiled symbol file
  1099. containing ALL the AMIGA includes (but not any Aztec standard includes).
  1100.  
  1101.  
  1102.